home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevpcl.c < prev    next >
C/C++ Source or Header  |  1994-09-18  |  7KB  |  217 lines

  1. /* Copyright (C) 1992, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpcl.c */
  20. /* Utilities for PCL printers */
  21. #include "gdevprn.h"
  22. #include "gdevpcl.h"
  23.  
  24. /* ------ Get paper size ------ */
  25.  
  26. /* Get the paper size code, based on width and height. */
  27. int
  28. gdev_pcl_paper_size(gx_device *dev)
  29. {    float height_inches = dev->height / dev->y_pixels_per_inch;
  30.     return
  31.        (height_inches >= 44.4 ? PAPER_SIZE_A0 :
  32.         height_inches >= 32.0 ? PAPER_SIZE_A1 :
  33.         height_inches >= 22.2 ? PAPER_SIZE_A2 :
  34.         height_inches >= 15.9 ? PAPER_SIZE_A3 :
  35.         height_inches >= 11.8 ? PAPER_SIZE_LEGAL :
  36.         height_inches >= 11.1 ? PAPER_SIZE_A4 :
  37.         PAPER_SIZE_LETTER);
  38. }
  39.  
  40. /* ------ Color mapping ------ */
  41.  
  42. /* The PaintJet and DeskJet 500C use additive colors in separate planes. */
  43. /* We only keep one bit of color, with 1 = R, 2 = G, 4 = B. */
  44. /* Because the buffering routines assume 0 = white, */
  45. /* we complement all the color components. */
  46. #define cv_shift (sizeof(gx_color_value) * 8 - 1)
  47.  
  48. /* Map an RGB color to a printer color. */
  49. gx_color_index
  50. gdev_pcl_3bit_map_rgb_color(gx_device *dev,
  51.   gx_color_value r, gx_color_value g, gx_color_value b)
  52. {    return (((b >> cv_shift) << 2) + ((g >> cv_shift) << 1) + (r >> cv_shift)) ^ 7;
  53. }
  54.  
  55. /* Map the printer color back to RGB. */
  56. int
  57. gdev_pcl_3bit_map_color_rgb(gx_device *dev, gx_color_index color,
  58.   gx_color_value prgb[3])
  59. {    ushort cc = (ushort)color ^ 7;
  60.     prgb[0] = -(cc & 1);
  61.     prgb[1] = -((cc >> 1) & 1);
  62.     prgb[2] = -(cc >> 2);
  63.     return 0;
  64. }
  65.  
  66. /* ------ Compression ------ */
  67.  
  68. /*
  69.  * Mode 2 Row compression routine for the HP DeskJet & LaserJet IIp.
  70.  * Compresses data from row up to end_row, storing the result
  71.  * starting at compressed.  Returns the number of bytes stored.
  72.  * Runs of K<=127 literal bytes are encoded as K-1 followed by
  73.  * the bytes; runs of 2<=K<=127 identical bytes are encoded as
  74.  * 257-K followed by the byte.
  75.  * In the worst case, the result is N+(N/127)+1 bytes long,
  76.  * where N is the original byte count (end_row - row).
  77.  * To speed up the search, we examine an entire word at a time.
  78.  * We will miss a few blocks of identical bytes; tant pis.
  79.  */
  80. int
  81. gdev_pcl_mode2compress(const word *row, const word *end_row, byte *compressed)
  82. {    register const word *exam = row; /* word being examined in the row to compress */
  83.     register byte *cptr = compressed; /* output pointer into compressed bytes */
  84.  
  85.     while ( exam < end_row )
  86.        {    /* Search ahead in the input looking for a run */
  87.         /* of at least 4 identical bytes. */
  88.         const byte *compr = (const byte *)exam;
  89.         const byte *end_dis;
  90.         const word *next;
  91.         register word test = *exam;
  92.         while ( ((test << 8) ^ test) > 0xff )
  93.           {    if ( ++exam >= end_row )
  94.               break;
  95.             test = *exam;
  96.           }
  97.  
  98.         /* Find out how long the run is */
  99.         end_dis = (const byte *)exam;
  100.         if ( exam == end_row )    /* no run */
  101.           { /* See if any of the last 3 "dissimilar" bytes are 0. */
  102.             if ( end_dis > compr && end_dis[-1] == 0 )
  103.               { if ( end_dis[-2] != 0 ) end_dis--;
  104.             else if ( end_dis[-3] != 0 ) end_dis -= 2;
  105.             else end_dis -= 3;
  106.               }
  107.             next = --end_row;
  108.           }
  109.         else
  110.           { next = exam + 1;
  111.             while ( next < end_row && *next == test )
  112.               next++;
  113.             /* See if any of the last 3 "dissimilar" bytes */
  114.             /* are the same as the repeated byte. */
  115.             if ( end_dis > compr && end_dis[-1] == (byte)test )
  116.               { if ( end_dis[-2] != (byte)test ) end_dis--;
  117.             else if ( end_dis[-3] != (byte)test ) end_dis -= 2;
  118.             else end_dis -= 3;
  119.               }
  120.           }
  121.  
  122.         /* Now [compr..end_dis) should be encoded as dissimilar, */
  123.         /* and [end_dis..next) should be encoded as similar. */
  124.         /* Note that either of these ranges may be empty. */
  125.  
  126.         for ( ; ; )
  127.            {    /* Encode up to 127 dissimilar bytes */
  128.             uint count = end_dis - compr; /* uint for faster switch */
  129.             switch ( count )
  130.               { /* Use memcpy only if it's worthwhile. */
  131.               case 6: cptr[6] = compr[5];
  132.               case 5: cptr[5] = compr[4];
  133.               case 4: cptr[4] = compr[3];
  134.               case 3: cptr[3] = compr[2];
  135.               case 2: cptr[2] = compr[1];
  136.               case 1: cptr[1] = compr[0];
  137.                 *cptr = count - 1;
  138.                 cptr += count + 1;
  139.               case 0: /* all done */
  140.                 break;
  141.               default:
  142.                 if ( count > 127 ) count = 127;
  143.                 *cptr++ = count - 1;
  144.                 memcpy(cptr, compr, count);
  145.                 cptr += count, compr += count;
  146.                 continue;
  147.               }
  148.             break;
  149.            }
  150.  
  151.            {    /* Encode up to 127 similar bytes. */
  152.             /* Note that count may be <0 at end of row. */
  153.             int count = (const byte *)next - end_dis;
  154.             while ( count > 0 )
  155.               { int this = (count > 127 ? 127 : count);
  156.                 *cptr++ = 257 - this;
  157.                 *cptr++ = (byte)test;
  158.                 count -= this;
  159.               }
  160.             exam = next;
  161.            }
  162.        }
  163.     return (cptr - compressed);
  164. }
  165.  
  166. /*
  167.  * Mode 3 compression routine for the HP LaserJet III family.
  168.  * Compresses bytecount bytes starting at current, storing the result
  169.  * in compressed, comparing against and updating previous.
  170.  * Returns the number of bytes stored.  In the worst case,
  171.  * the number of bytes is bytecount+(bytecount/8)+1.
  172.  */
  173. int
  174. gdev_pcl_mode3compress(int bytecount, const byte *current, byte *previous, byte *compressed)
  175. {    register const byte *cur = current;
  176.     register byte *prev = previous;
  177.     register byte *out = compressed;
  178.     const byte *end = current + bytecount;
  179.     while ( cur < end )
  180.        {    /* Detect a maximum run of unchanged bytes. */
  181.         const byte *run = cur;
  182.         register const byte *diff;
  183.         const byte *stop;
  184.         int offset, cbyte;
  185.         while ( cur < end && *cur == *prev )
  186.            {    cur++, prev++;
  187.            }
  188.         if ( cur == end ) break;    /* rest of row is unchanged */
  189.         /* Detect a run of up to 8 changed bytes. */
  190.         /* We know that *cur != *prev. */
  191.         diff = cur;
  192.         stop = (end - cur > 8 ? cur + 8 : end);
  193.         do
  194.            {    *prev++ = *cur++;
  195.            }
  196.         while ( cur < stop && *cur != *prev );
  197.         /* Now [run..diff) are unchanged, and */
  198.         /* [diff..cur) are changed. */
  199.         /* Generate the command byte(s). */
  200.         offset = diff - run;
  201.         cbyte = (cur - diff - 1) << 5;
  202.         if ( offset < 31 )
  203.             *out++ = cbyte + offset;
  204.         else
  205.            {    *out++ = cbyte + 31;
  206.             offset -= 31;
  207.             while ( offset >= 255 )
  208.                 *out++ = 255, offset -= 255;
  209.             *out++ = offset;
  210.            }
  211.         /* Copy the changed data. */
  212.         while ( diff < cur )
  213.             *out++ = *diff++;
  214.        }
  215.     return out - compressed;
  216. }
  217.